home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / actionrp / nhplusx.bin / nhplusx / nhplusX / nhplus / window.doc < prev    next >
Text File  |  1995-09-10  |  21KB  |  460 lines

  1. Introduction
  2.  
  3. This file documents the support for various windowing systems in
  4. NetHack.  The support is through a standard interface, separating the
  5. main NetHack code from window-system specific code.  The implementation
  6. supports multiple window systems in the same binary.  Even if you only
  7. wish to support one window-port on your port, you will need to follow
  8. the instructions in Section VII to get a compilable binary.
  9.  
  10. Contents:
  11.     I.   Window Types and Terminology
  12.     II.  Interface Specification
  13.     III. Global variables
  14.     IV.  New or respecified common, high level routines
  15.     V.   Game startup
  16.     VI.  Conventions
  17.     VII. Implementation and Multi-window support
  18.  
  19. I.  Window Types and Terminology
  20.  
  21. There are 5 basic window types, used to call create_nhwindow():
  22.  
  23.     NHW_MESSAGE    (top line)
  24.     NHW_STATUS    (bottom lines)
  25.     NHW_MAP        (main dungeon)
  26.     NHW_MENU    (inventory or other "corner" windows)
  27.     NHW_TEXT    (help/text, full screen paged window)
  28.  
  29. The tty window-port also uses NHW_BASE (the base display) internally.
  30.  
  31. NHW_MENU windows can be used for either menu or text display.  Their
  32. basic feature is that for the tty-port, if the window is small enough,
  33. it appears in the corner of the tty display instead of overwriting
  34. the whole screen.  The first call to add information to the window
  35. will decide if it is going to be used to display a menu or text.
  36. If start_menu() is called, then it will be used as a menu.  If
  37. putstr() is called, it will be used as text.  Once decided, there
  38. is no turning back.  For the tty-port, if the data is too large for
  39. a single screen then the data is paged (with --more--) between pages.
  40. Only NHW_MENU type windows can be used for menus.
  41.  
  42. NHW_TEXT windows are used to display a large amount of textual data.
  43. This is the type of window one would use for displaying a help file,
  44. for example.  In the tty window-port, windows of type NHW_TEXT can
  45. page using the DEF_PAGER, if DEF_PAGER is defined.  There exists an
  46. assumption that the font for text windows is monospaced.  The help
  47. files are all formatted accordingly.
  48.  
  49. "window" is always of type winid.  This is currently implemented as an
  50. integer, but doesn't necessarily have to be done that way.  There are
  51. a few fixed window names that are known throughout the code:
  52.  
  53.     WIN_MESSAGE    (top line)
  54.     WIN_STATUS    (bottom lines)
  55.     WIN_MAP        (main dungeon)
  56.     WIN_INVEN    (inventory)
  57.  
  58. Other windows are created and destroyed as needed.
  59.  
  60. "Port" in this document refers to a CPU/OS/hardware platform (UNIX, MSDOS
  61. TOS, etc.)  "window-port" refers to the windowing platform.  This is
  62. orthogonal (e.g.  UNIX might use either a tty window-port or an X11
  63. window-port).
  64.  
  65.  
  66. II.  Interface Specification
  67.  
  68. All functions below are void unless otherwise noted.
  69.  
  70. A.  Low-level routines:
  71.  
  72. raw_print(str)    -- Print directly to a screen, or otherwise guarantee that
  73.            the user sees str.  raw_print() appends a newline to str.
  74.            It need not recognize ASCII control characters.  This is
  75.            used during startup (before windowing system initialization
  76.            -- maybe this means only error startup messages are raw),
  77.            for error messages, and maybe other "msg" uses.  E.g.
  78.            updating status for micros (i.e, "saving").
  79. raw_print_bold(str)
  80.         -- Like raw_print(), but prints in bold/standout (if possible).
  81. curs(window, x, y)
  82.         -- Next output to window will start at (x,y), also moves
  83.            displayable cursor to (x,y).  For backward compatibility,
  84.            1 <= x < cols, 0 <= y < rows, where cols and rows are
  85.            the size of window.
  86.         -- For variable sized windows, like the status window, the
  87.            behaviour when curs() is called outside the window's limits
  88.            is unspecified. The mac port wraps to 0, with the status
  89.            window being 2 lines high and 80 columns wide.
  90.         -- Still used by curs_on_u(), status updates, screen locating
  91.            (identify, teleport).
  92.         -- NHW_MESSAGE, NHW_MENU and NHW_TEXT windows do not
  93.            currently support curs in the tty window-port.
  94. putstr(window, attr, str)
  95.         -- Print str on the window the given attribute.  Only
  96.            printable ASCII characters (040-0126) must be supported.
  97.            Multiple putstr()s are output on separate lines.  Attributes
  98.            can be one of
  99.             ATR_NONE (or 0)
  100.             ATR_ULINE
  101.             ATR_BOLD
  102.             ATR_BLINK
  103.             ATR_INVERSE
  104.            If a window-port does not support all of these, it may map
  105.            unsupported attributes to a supported one (e.g. map them
  106.            all to ATR_INVERSE).  putstr() may compress spaces out of
  107.            str, break str, or truncate str, if necessary for the
  108.            display.  Where putstr() breaks a line, it has to clear
  109.            to end-of-line.
  110.         -- putstr should be implemented such that if two putstr()s
  111.            are done consecutively that the user will see the first
  112.            and the second.  In the tty port, pline() achieves this
  113.            by calling more() or displaying both on the same line.
  114. get_nh_event()    -- Does window event processing (e.g. exposure events).
  115.            A noop for the tty and X window-ports.
  116. int nhgetch()    -- Returns a single character input from the user.
  117.         -- In the tty window-port, nhgetch() assumes that tgetch()
  118.            will be the routine the OS provides to read a character.
  119.            Returned character _must_ be non-zero.
  120. int nh_poskey(int *x, int *y, int *mod)
  121.         -- Returns a single character input from the user or a
  122.            a positioning event (perhaps from a mouse).  If the
  123.            return value is non-zero, a character was typed, else,
  124.            a position in the MAP window is returned in x, y and mod.
  125.            mod may be one of
  126.  
  127.             CLICK_1        /* mouse click type 1 */
  128.             CLICK_2        /* mouse click type 2 */
  129.  
  130.            The different click types can map to whatever the
  131.            hardware supports.  If no mouse is supported, this
  132.            routine always returns a non-zero character.
  133.  
  134. B.  High-level routines:
  135.  
  136. print_glyph(window, x, y, glyph)
  137.         -- Print the glyph at (x,y) on the given window.  Glyphs are
  138.            integers at the interface, mapped to whatever the window-
  139.            port wants (symbol, font, color, attributes, ...there's
  140.            a 1-1 map between glyphs and distinct things on the map).
  141. char yn_function(const char *ques, const char *choices, char default)
  142.         -- Print a prompt made up of ques, choices and default.
  143.            Read a single character response that is contained in
  144.            choices or default.  If choices is NULL, all possible
  145.            inputs are accepted and returned.  This overrides
  146.            everything else.  The choices are expected to be in
  147.            lower case.  Entering ESC always maps to 'q', or 'n',
  148.            in that order, if present in choices, otherwise it maps
  149.            to default.  Entering any other quit character (SPACE,
  150.            RETURN, NEWLINE) maps to default.
  151.         -- If the choices string contains a '#' then accept a count.
  152.            Place this value in the global "yn_number" and return '#'.
  153.         -- This uses the top line in the tty window-port, other
  154.            ports might use a popup.
  155. getlin(const char *ques, char *input)
  156.         -- Prints ques as a prompt and reads a single line of text,
  157.            up to a newline.  The string entered is returned without the
  158.            newline.  ESC is used to cancel, in which case the string
  159.            "\033\000" is returned.
  160.         -- getlin() must call flush_screen(1) before doing anything.
  161.         -- This uses the top line in the tty window-port, other
  162.            ports might use a popup.
  163. get_ext_cmd(char *input)
  164.         -- This routine is only included if COM_COMPL is defined.
  165.            Get the extended command in a special way (command
  166.            completion on the tty window-port).
  167.         ** I think it is pretty lame that this has an #ifdef
  168.         ** on it.  The #ifdef COM_COMPL should either be yanked
  169.         ** inside this function or done away with.    -dean
  170. player_selection()
  171.         -- Do a window-port specific player type selection.  If
  172.            player_selection() offers a Quit option, it is its
  173.            responsibility to clean up and terminate the process.
  174. display_file(str, boolean complain)
  175.         -- Display the file named str.  Complain about missing files
  176.            iff complain is TRUE.
  177. update_inventory()
  178.         -- Indicate to the window port that the inventory has been
  179.            changed.
  180.         -- Merely calls display_inventory() for window-ports that
  181.            leave the window up, otherwise empty.
  182. doprev_message()
  183.         -- Display previous messages.  Used by the ^P command.
  184.         -- On the tty-port this scrolls WIN_MESSAGE back one line.
  185.  
  186. C.  Window Utility Routines
  187.  
  188. init_nhwindows()
  189.         -- Initialize the windows used by NetHack.  This can also
  190.            create the standard windows listed at the top, but does
  191.            not display them.
  192.         -- When the message window is created, the variable
  193.            flags.window_inited needs to be set to TRUE.  Othewise
  194.            all plines() will be done via raw_print().
  195.         ** Why not have init_nhwindows() create all of the "standard"
  196.         ** windows?  Or at least all but WIN_INFO?    -dean
  197. exit_nhwindows()
  198.         -- Exits the window system.  This should dismiss all windows,
  199.            except the "window" used for raw_print().
  200. window = create_nhwindow(type)
  201.         -- Create a window of type "type."
  202. clear_nhwindow(window)
  203.         -- Clear the given window, when apropriate.
  204. display_nhwindow(window, boolean blocking)
  205.         -- Display the window on the screen.  If there is data
  206.            pending for output in that window, it should be sent.
  207.            If blocking is TRUE, display_nhwindow() will not
  208.            return until the data has been displayed on the screen,
  209.            and acknowledged by the user where appropriate.
  210.         -- All calls are blocking in the tty window-port.
  211.         -- Calling display_nhwindow(WIN_MESSAGE,???) will do a
  212.            --more--, if necessary, in the tty window-port.
  213. destroy_nhwindow(window)
  214.         -- Destroy will dismiss the window if the window has not
  215.            already been dismissed.
  216. start_menu(window)
  217.         -- Start using window as a menu.  You must call start_menu()
  218.            before add_menu().  After calling start_menu() you may not
  219.            putstr() to window.  Only windows of type NHW_MENU may be
  220.            used for menus.
  221. add_menu(window, ch, attr, str)
  222.         -- Add a text line to the given menu window.  If ch is 0,
  223.            then the line cannot be selected (e.g. a title).  Otherwise,
  224.            ch is the response needed to select the line.  The value
  225.            attr is the same as in putstr().
  226. end_menu(window, ch, str, morestr)
  227.         -- Stop adding entries to the menu and flushes the window
  228.            to the screen (brings to front?).  Str gives other valid
  229.            (likely canceling) inputs (beyond any standard ones) and
  230.            ch is the response to any of them.  Morestr is a prompt
  231.            to give the user.  If morestr is NULL, no prompt will be
  232.            printed unless the window-port requires one (e.g. --more--
  233.            in the tty window-port).
  234. char select_menu(window)
  235.         -- Returns a valid response from the given menu (user typing,
  236.            mouse selection, whatever).  You may select_menu() from a
  237.            window multiple times -- the menu is saved until
  238.            start_menu() or destroy_nhwindow() is called on the window.
  239.         -- Note that NHW_MENU windows need not have select_menu
  240.            called for them. There is no way of knowing whether
  241.            select_menu() will be called for the window at
  242.            create_nhwindow() time.
  243.  
  244. D.  Misc. Routines
  245.  
  246. make_sound(???) -- To be determinded later.  THIS IS CURRENTLY UN-IMPLEMENTED.
  247. nhbell()    -- Beep at user.  [This will exist at least until sounds are
  248.            redone, since sounds aren't attributable to windows anyway.]
  249. mark_synch()    -- Don't go beyond this point in I/O on any channel until
  250.            all channels are caught up to here.  Can be an empty call
  251.            for the moment
  252. wait_synch()    -- Wait until all pending output is complete (*flush*() for
  253.            streams goes here).
  254.         -- May also deal with exposure events etc. so that the
  255.            display is OK when return from wait_synch().
  256. delay_output()    -- Causes a visible delay of 50ms in the output.
  257.            Conceptually, this is similar to wait_synch() followed
  258.            by a nap(50ms), but allows asynchronous operation.
  259. askname()    -- Ask the user for a player name.
  260. cliparound(x, y)-- Make sure that the user is more-or-less centered on the
  261.            screen if the playing area is larger than the screen.
  262.         -- This funciton is only defined if CLIPPING is defined.
  263. number_pad(state)
  264.         -- Initialize the number pad to the given state.
  265. suspend_nhwindows(str)
  266.         -- Prepare the window to be suspended.
  267. resume_nhwindows()
  268.         -- Restore the windows after being suspended.
  269.  
  270. start_screen()    -- Only used on Unix tty ports, but must be declared for
  271.            completeness.  Sets up the tty to work in full-screen
  272.            graphics mode.  Look at win/tty/termcap.c for an
  273.            example.  If your window-port does not need this function
  274.            just declare an empty function.
  275. end_screen()    -- Only used on Unix tty ports, but must be declared for
  276.            completeness.  The complement of start_screen().
  277.  
  278.  
  279. III.  Global variables
  280.  
  281. The following global variables are defined in decl.c and must be used by
  282. the window interface to the rest of NetHack.
  283.  
  284. char toplines[BUFSZ]    Contains the last message printed to the WIN_MESSAGE
  285.             window, used by Norep().
  286. winid WIN_MESSAGE, WIN_MAP, WIN_STATUS, WIN_INVEN
  287.             The four standard windows.
  288. char *AE, *AS;        Checked in options.c to see if we should switch
  289.             to DEC_GRAPHICS.  It is #ifdefed VMS and UNIX.
  290. int LI, CO;        Set in sys/unix/ioctl.c.
  291.  
  292. The following appears to be Unix specific.  Other ports using the tty
  293. window-port should also declare this variable in one of your sys/*.c files.
  294.  
  295. short ospeed;        Set and declared in sys/unix/unixtty.c (don't
  296.             know about other sys files).
  297.  
  298. IV.  New or respecified common, high level routines
  299.  
  300. These are not part of the interface, but mentioned here for your information.
  301.  
  302. char display_inventory(lets,show_cost)
  303.         -- Calls a start_menu()/add_menu()/select_menu() sequence.
  304.            It returns the item selected, or '\0' if none is selected.
  305.            Returns '\033' if the menu was canceled.
  306. raw_printf(str, ...)
  307.         -- Like raw_print(), but accepts arguments like printf().  This
  308.            routine processes the arguments and then calls raw_print().
  309.         -- The mac version #defines error raw_printf.  I think this
  310.            is a reasonable thing to do for most ports.
  311. pline(str, ...)
  312.         -- Prints a string to WIN_MESSAGE using a printf() interface.
  313.            It has the variants kludge(), You(), Your(), and Norep()
  314.            which all use the same mechanism.  pline() requires the
  315.            variable "char toplines[]" be defined; Every putstr() on
  316.            WIN_MESSAGE must copy str to toplines[] for use by Norep()
  317.            and pline().  If the window system is not active
  318.            (!flags.window_inited) pline() uses raw_print().
  319.  
  320.  
  321. V.  Game startup
  322.  
  323. The following is the general order in which calls from main() should be made,
  324. as they relate to the window system.  The actual code may differ, but the
  325. order of the calls should be the same.
  326.  
  327.  
  328. choose_windows(DEFAULT_WINDOW_SYS) /* choose a default window system */
  329. initoptions()               /* read the resource file */
  330. init_nhwindows()           /* initialize the window system */
  331. process_options(argc, argv)       /* process command line options or equiv */
  332. if(save file is present) {
  333.   display_gamewindows()           /* create & display the game windows */
  334.   dorestore()               /* restore old game; pline()s are OK */
  335. } else {
  336.   player_selection()           /* select a player type using a window */
  337.   display_gamewindows()           /* create & display the game windows */
  338. }
  339. pline("Hello, welcome...");
  340.  
  341. Choose_windows() is a common routine, and calling it in main() is necessary
  342. to initialize the function pointer table to _something_ so that calls to
  343. raw_print() will not fail.  Choose_windows() should be called almost
  344. immediately upon entering main().  Look at unixmain.c for an example.
  345.  
  346. Display_gamewindows() is a common routine that displays the three standard
  347. game windows (WIN_MESSAGE, WIN_MAP, and WIN_STATUS).  It is normally called
  348. just before the "Hello, welcome" message.
  349.  
  350. Process_options() is currently still unique to each port.  There may be need
  351. in the future to make it possible to replace this on a per window-port basis.
  352.  
  353.  
  354. VI.  Conventions
  355.  
  356. init_nhwindows() is expected to display a gee-whiz banner window, including
  357. the Copyright message.
  358.  
  359. Ports (MSDOS, TOS, MAC, etc) _may_ use window-port specific routines in
  360. their port specific files, _AT_THEIR_OWN_RISK_.  Since "port" and
  361. "window-port" are orthogonal, you make your "port" code less portable by
  362. using "window-port" specific routines.  Every effort should be made to
  363. use window-port interface routines, unless there is something port
  364. specific that is better suited (e.g. msmsg() for MSDOS).
  365.  
  366. The tty window-port is contained in win/tty, the X window port is contained
  367. in win/X11.  The files in these directories contain _only_ window port code,
  368. and may be replaced completely by other window ports.
  369.  
  370.  
  371. VII.  Implementation and Multi-window support
  372.  
  373. NetHack 3.1 supports multiple window systems in the same binary.  When
  374. writing a new window-port, you need to follow the following guidelines:
  375.  
  376. 1) Pick a unique prefix to identify your window-port.  For example, the tty
  377.    window port uses "tty"; the X11 window-port uses "X11".
  378. 2) When declaring your interface function, preceed the function names with
  379.    your unique prefix.  E.g:
  380.  
  381.     void tty_init_nhwindows()
  382.     {
  383.         /* code for initializing windows in the tty port */
  384.     }
  385.  
  386.    When calling window functions from within your port code, we suggest
  387.    calling the prefixed version to avoid unnecessary overhead.  However,
  388.    you may safely call the non-prefixed version (e.g. putstr() rather than
  389.    tty_putstr()) as long as you #include "hack.h".  If you do not
  390.    include hack.h and use the non-prefixed names, you will get compile
  391.    or link-time errors.
  392.  
  393.    We also suggest declaring all functions and port-specific data with
  394.    this prefix to avoid unexpected overlaps with other window-ports.
  395.    The tty and X11 ports do not currently follow this suggestion, but do
  396.    use separate non-overlapping convention for naming data and internal
  397.    functions.
  398.  
  399. 3) Declare a structure, "struct win_choices prefix_procs", (with your
  400.    prefix instead of "prefix") and fill in names of all of your
  401.    interface functions.  The first entry in this structure in the name
  402.    of your window-port, which should be the prefix.  The other entries
  403.    are the function addresses.
  404.  
  405.    Assuming that you followed the convention in (2), you can safely copy
  406.    the structure definition from an existing window-port and just change
  407.    the prefixes.  That will guarantee that you get the order of your
  408.    initializations correct (not all compilers will catch out-of-order
  409.    function pointer declarations).
  410.  
  411. 3) Add a #define to config.h identifying your window-port in the
  412.    "Windowing systems" section.  Follow the "prefix_GRAPHICS" convention
  413.    for your window-port.
  414.  
  415. 4) Add your prefix to the list of valid prefixes listed in the "Known
  416.    systems are" comment.
  417.  
  418. 5) Edit makedefs.c and add a string for your windowing system to window_opts
  419.    inside an #ifdef prefix_GRAPHICS.
  420.  
  421. 6) Edit windows.c and add an external reference to your prefix_procs inside
  422.    an #ifdef prefix_GRAPHICS.  Also add an entry to the winchoices
  423.    structure for your window-port of the form:
  424.  
  425.     #ifdef prefix_GRAPHICS
  426.     { &prefix_procs, prefix_init_function },
  427.     #endif
  428.  
  429.    The init_function is necessary for some compilers and systems to force
  430.    correct linking.  If your system does not need such massaging, you
  431.    may put a null pointer here.
  432.  
  433.    You should declare prefix_procs and prefix_init_function as extern's
  434.    in your win*.h file, and #include that file at the beginning of
  435.    windows.c, also inside an #ifdef prefix_GRAPHICS.  Some win*.h files
  436.    are rather sensitive, and you might have to duplicate your
  437.    prefix_procs and prefix_init_function's instead of including win*.h.
  438.    The tty port includes wintty.h, the X11 port duplicates the declarations.
  439.  
  440. 7) If your port uses Makefile.src, add the .c and .o files and an
  441.    appropriate comment in the section on "WINSRC" and "WINOBJ".  See
  442.    Makefile.src for the style to use.  If you don't use Makefile.src,
  443.    we suggest using a similar convention for the make-equivalent used
  444.    on your system.  Also add your new source and binaries to WINSRC and
  445.    WINOBJ (if you want the NetHack binary to include them, that is).
  446.  
  447. 8) Look at your port's portmain.c (the file containing main()) and make
  448.    sure that all of the calls match the the requirements laid out in
  449.    Section V.
  450.  
  451. Now, proceed with compilation and installation as usual.  Don't forget
  452. to edit Makefile.src (or its equivalent) and config.h to set the
  453. window-ports you want in your binary, the default window-port to use,
  454. and the .o's needed to build a valid game.
  455.  
  456. One caveat.  Unfortunately, if you incorrectly specify the
  457. DEFAULT_WINDOW_SYS, NetHack will dump core (or whatever) without
  458. printing any message, because raw_print() cannot function without first
  459. setting the window-port.
  460.